HTMLify
app.js
Views: 14 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 | const input = document.querySelectorAll(".controls input"); function handleUpdate() { // console.log(this.name); this.name == "base" ? (suppix = "") : (suppix = "px"); document.documentElement.style.setProperty( `--${this.name}`, this.value + suppix ); } input.forEach((input) => input.addEventListener("change", handleUpdate)); |